ComponentOne Tiles for WPF and Silverlight
Adding XAML Content to the Tile Header
C1Tiles Task-Based Help > Adding XAML Content to the Tile Header

The Tiles for WPF and Silverlight controls do not support direct XAML content in their Header properties. You should either bind the Header to some CLR value, or leave it empty and include your desired Header content (such as an image) into the Content template.

For example:

XAML
Copy Code
<c1:C1SlideTile Width="280" Height="200" Header="{Binding Name}" />
See Also